home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 April / EnigmA AMIGA RUN 26 (1998)(G.R. Edizioni)(IT)[!][issue 1998-04].iso / classx / installlibs < prev    next >
Text File  |  1998-03-09  |  3KB  |  147 lines

  1. ;**************************************************************************
  2. ;  ClassX libs installer (c) Mik of ClassX 
  3. ;  $VER: 1.00 (2/12/1997)
  4. ;**************************************************************************
  5.  
  6.  
  7. ;**************************************************************************
  8. ;prepare environment
  9. ;**************************************************************************
  10. Failat 9999
  11. Avail >NIL: flush
  12.  
  13. If NOT EXISTS ENV:Language
  14.   SetEnv Language italiano
  15. EndIf
  16.  
  17. Set cf `C/CpuFpu`
  18. Set XDLIB "libs:x-dve.library"
  19. Set XFLIB "libs:xfa.library"
  20. Set FMLIB "libs:fontmachine.library"
  21. Set IFLIB "libs:iff.library"
  22.  
  23. Echo "Installazione librerie ottimizzate per la configurazione attuale"
  24.  
  25. ;***************************** 68060 ******************************
  26.  
  27. If $cf EQ "64"
  28.     Echo "Processore 68060 + 68060FPU"
  29.     Set XDSRC "libs060/x-dve.library"
  30.     Set XFSRC "libs060/xfa.library"
  31.     Skip EndLib
  32. endif
  33.  
  34. ;***************************** 68040 ******************************
  35.  
  36. If $cf EQ "44"
  37.     Echo "Processore 68040 + 68040FPU"
  38.     Set XDSRC "libs040/x-dve.library"
  39.     Set XFSRC "libs040/xfa.library"
  40.     Skip EndLib
  41. endif
  42.  
  43. ;***************************** 68030 ******************************
  44.  
  45. If $cf EQ "34"
  46.     Echo "Processore 68030 + FPU"
  47.     Set XDSRC "libs030/x-dve.library"
  48.     Set XFSRC "libs030/xfa.library"
  49.     Skip EndLib
  50. endif
  51.  
  52. If $cf EQ "32"
  53.     Echo "Processore 68030 + FPU"
  54.     Set XDSRC "libs030/x-dve.library"
  55.     Set XFSRC "libs030/xfa.library"
  56.     Skip EndLib
  57. endif
  58.  
  59. If $cf EQ "31"
  60.     Echo "Processore 68030 + FPU"
  61.     Set XDSRC "libs030/x-dve.library"
  62.     Set XFSRC "libs030/xfa.library"
  63.     Skip EndLib
  64. endif
  65.  
  66. ;***************************** 68020 ******************************
  67.  
  68. If $cf EQ "24"
  69.     Echo "Processore 68020 + FPU"
  70.     Set XDSRC "libs030/x-dve.library"
  71.     Set XFSRC "libs030/xfa.library"
  72.     Skip EndLib
  73. endif
  74.  
  75. If $cf EQ "22"
  76.     Echo "Processore 68020 + FPU"
  77.     Set XDSRC "libs030/x-dve.library"
  78.     Set XFSRC "libs030/xfa.library"
  79.     Skip EndLib
  80. endif
  81.  
  82. If $cf EQ "21"
  83.     Echo "Processore 68020 + FPU"
  84.     Set XDSRC "libs030/x-dve.library"
  85.     Set XFSRC "libs030/xfa.library"
  86.     Skip EndLib
  87. endif
  88.  
  89. If $cf EQ "20"
  90.     Echo "Processore 68020"
  91.     Set XDSRC "libs020/x-dve.library"
  92.     Set XFSRC "libs020/xfa.library"
  93.     Skip EndLib
  94. endif
  95.  
  96. ;***************************** 68000 ******************************
  97. If $cf EQ "00"
  98.     Echo "Processore 68000"
  99.     Set XDSRC "libs000/x-dve.library"
  100.     Set XFSRC "libs000/xfa.library"
  101.     Skip EndLib
  102. endif
  103.  
  104. ;********** Default cases (060-nofpu - 040LC - etc..) *************
  105. Echo "Processore 68020/68030/68040/68060 senza FPU"
  106. Set XDSRC "libs020/x-dve.library"
  107. Set XFSRC "libs020/xfa.library"
  108.  
  109. Lab EndLib
  110.  
  111. ;**************************************************************************
  112.  
  113. ;x-dve.library
  114. Version >NIL: $XDLIB Version 3 Revision 15
  115. if warn
  116.     Echo "Installazione " $XDLIB
  117.     Copy $XDSRC $XDLIB
  118. endif
  119.  
  120.  
  121. ;xfa.library
  122. Version >NIL: $XFLIB Version 1 Revision 19
  123. if warn
  124.     Echo "Installazione " $XFLIB
  125.     Copy $XFSRC $XFLIB
  126. endif
  127.  
  128.  
  129. ;fontmachine.library
  130. Version >NIL: $FMLIB Version 1 Revision 30
  131. if warn
  132.     Echo "Installazione " $FMLIB
  133.     Copy "libs/fontmachine.library" $FMLIB
  134. endif
  135.  
  136.  
  137. ;iff.library
  138. Version >NIL: $IFLIB Version 23 Revision 2
  139. if warn
  140.     Echo "Installazione " $IFLIB
  141.     Copy "libs/iff.library" $IFLIB
  142. endif
  143.  
  144. Echo "Fine Installazione."
  145.  
  146. ;**************************************************************************
  147.